Get Fed Participant
The GetFedParticipant API enables to fetch the details of Fed participants
Method: POST
{{URL}}/rtp/rpc/TransactionService/GetFedParticipant
Headers
Name | Value |
---|---|
Content-Type | application/json |
Credential | "Basic c3VwcG9ydCsxQG5ldHN5cy1pbmMuY29tOjM5ZDYxOGJkNTVmN5NWQxY2RlNDE5" |
Signature | "{{signature}}" |
Example
Payload Parameters
Parameter | Description |
---|---|
processor Mandatory | String Payment channel through which the transaction happens Example – "FEDNOW" |
routingNumber Mandatory | String Routing number of the bank or financial institution Example – "184434514" |
- cURL
- C#
- Go
- NodeJs
curl --location --globoff '{{URL}}/rtp/rpc/TransactionService/GetFedParticipant' \
--header 'Content-Type: application/json' \
--data '{"processor":"FEDNOW","routingNumber":"184434514"}'
var options = new RestClientOptions("{{URL}}/rtp/rpc/TransactionService/GetFedParticipant")
{
MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("", Method.Post);
request.AddHeader("Content-Type", "application/json");
var body = @"{
" + "\n" +
@" ""processor"": ""FEDNOW"",
" + "\n" +
@" ""routingNumber"": ""184434514""
" + "\n" +
@"}";
request.AddStringBody(body, DataFormat.Json);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "{{URL}}/rtp/rpc/TransactionService/GetFedParticipant"
method := "POST"
payload := strings.NewReader(`{`+"
"+`
"processor": "FEDNOW",`+"
"+`
"routingNumber": "184434514"`+"
"+`
}`)
client := &http.Client {
}
req, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("Content-Type", "application/json")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
var https = require('follow-redirects').https;
var fs = require('fs');
var options = {
'method': 'POST',
'hostname': '{{URL}}',
'path': '/rtp/rpc/TransactionService/GetFedParticipant',
'headers': {
'Content-Type': 'application/json'
},
'maxRedirects': 20
};
var req = https.request(options, function (res) {
var chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function (chunk) {
var body = Buffer.concat(chunks);
console.log(body.toString());
});
res.on("error", function (error) {
console.error(error);
});
});
var postData = JSON.stringify({
"processor": "FEDNOW",
"routingNumber": "184434514"
});
req.write(postData);
req.end();
Request Body (Applicable only for FedNow)
{
"processor": "FEDNOW",
"routingNumber": "184434514"
}
Response: 200
Response Parameters
Parameter | Description |
---|---|
id | String Unique ID of the generated profile Example – "184434514" |
name | String Name of the participant bank whose profile is retrieved Example – "Bank C" |
onlineStatus | Boolean Online status of the participant bank Example – true |
services | Array Type of services enabled for the bank Example – "CTRO","CTSR","RFPR" |
updatedDate | String Date and time of the participant bank profile was last updated Example – "2024-04-29T08:12:09.625Z" |
Response Body (Applicable only for FedNow)
{
"id": "184434514",
"name": "Bank C",
"onlineStatus": true,
"services": [
"CTRO",
"CTSR",
"RFPR"
],
"updatedDate": "2024-04-29T08:12:09.625Z"
}